home *** CD-ROM | disk | FTP | other *** search
- /*
- * ARexx replacement (untested) of the Unix script of the same name.
- *
- * Copyright (C) 1998 by Andreas Scherer.
- * This script is free software; the author gives unlimited
- * permission to copy, distribute, and modify it.
- */
-
- Address COMMAND
-
- Parse Arg FF EE .
-
- F = Left( FF, LastPos( ".", FF ) - 1 )
- E = EE
-
- /* Say */ "ttf2afm" FF EE ">" F".afm"
- /* Say */ "afm2tfm" F".afm -t" E "-p" E "-v" F".vpl r"F".tfm"
- /* Say */ "vptovf" F".vpl" F".vf" F".tfm"
-
- Exit 0
-
- /* EOF */
-